From: Sebastian Kemper Date: Sun, 26 Nov 2017 22:04:17 +0000 (+0100) Subject: baresip: build fix X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22http:/www.crowdsec.net/%22/%22https:/collectd.org/%22http:/www.crowdsec.net/%22?a=commitdiff_plain;h=refs%2Fpull%2F213%2Fhead;p=feed%2Ftelephony.git baresip: build fix The package currently fails to build because librem headers cannot be found. For reasons unknown baresip searches in SYSROOT instead of SYSROOT_ALT for them. Fix this by patching the Makefile. Signed-off-by: Sebastian Kemper --- diff --git a/net/baresip/patches/002-fix-rem-include.patch b/net/baresip/patches/002-fix-rem-include.patch new file mode 100644 index 0000000..d2b85c1 --- /dev/null +++ b/net/baresip/patches/002-fix-rem-include.patch @@ -0,0 +1,16 @@ +--- a/Makefile ++++ b/Makefile +@@ -48,11 +48,11 @@ endif + + CFLAGS += -I. -Iinclude -I$(LIBRE_INC) -I$(SYSROOT)/include + CFLAGS += -I$(LIBREM_PATH)/include +-CFLAGS += -I$(SYSROOT)/local/include/rem -I$(SYSROOT)/include/rem ++CFLAGS += -I$(SYSROOT)/local/include/rem -I$(SYSROOT_ALT)/include/rem + + CXXFLAGS += -I. -Iinclude -I$(LIBRE_INC) + CXXFLAGS += -I$(LIBREM_PATH)/include +-CXXFLAGS += -I$(SYSROOT)/local/include/rem -I$(SYSROOT)/include/rem ++CXXFLAGS += -I$(SYSROOT)/local/include/rem -I$(SYSROOT_ALT)/include/rem + CXXFLAGS += $(EXTRA_CXXFLAGS) + + # XXX: common for C/C++